Adapters
Please note that AquaTerm 1.0 is not backwards compatible with clients using v0.3.2 API.
AquaTerm gains most of its functionality through adapters, small sections of code that do the actual conversion from the client calls to the AquaTerm API. Below is a list of existing adapters. You can help out by coding, testing or simply suggest new adapters.
[gnuplot info]
Gnuplot version 4.0 and later supports AquaTerm 1.0 directly:
Steps to install
- Install AquaTerm
- Install gnuplot 4.0 (or later) using installer package from gnuplot site
[Back to top of list]
[PGPLOT info]
Steps to install
- create dir pgplot/sys_macosx if it doesn't exist
- copy *.conf files to pgplot/sys_macosx
- copy aqdriv.m to pgplot/drivers
- edit drivers.list (line 8) to include:
AQDRIV 0 /AQT AquaTerm.app under Mac OS X C
- edit makemake (line 103) to include:
AQDRIV="aqdriv.o"
- create dir pgplot_obj next to (NOT INSIDE!) pgplot
- cd to pgplot_obj
- ../pgplot/makemake ../pgplot macosx g77_gcc_AQT
- uncomment any other driver that you want in pgplot_obj/drivers.list (NOTE pgplot_obj)
- ../pgplot/makemake ../pgplot macosx g77_gcc_AQT
- make
- install the library and support files manually according to the PGPLOT docs
[Back to top of list]
[PLPLOT info]
PLplot version 5.3.1 and later supports AquaTerm 1.0 directly:
Steps to install
- Install AquaTerm
- Install PLplot according to instructions on their site
[Back to top of list]
Steps to install
- cd into Fortran or C adapter directory
- [Fortran only] select compiler in Makefile
- make
- ./demo
- ./eventdemo1
Also, from C and FORTRAN, it is possible to link with PGPLOT and have a large library of plotting functions at your disposal.
[Back to top of list]
Steps to install
- cd into Perl adapter directory
- perl Makefile.PL
- make
- make install
See include file HOW_TO_USE for more examples.
[Back to top of list]
Steps to install
- Install PyObjC
- See incuded file demo.py for example
[Back to top of list]