Release Name: 1.0.6
Notes:
CSTARS Radiative Transfer Model Implementations
Efficient C reimplementation of various well-known radiative transfer
models as well as their inversion. This reimplementation obeys a
necessity for modularization and flexibility.
The model and inversion programs currently available are:
Model Inversion
-------------- ------------------
rtm.prospect rtm.inv_prospect
rtm.sailh rtm.inv_sailh
rtm.prospect_sailh rtm.inv_prospect_sailh
rtm.prospect_infi rtm.inv_prospect_infi
rtm.liberty rtm.inv_liberty
rtm.geosail (not implemented yet)
See the AUTHORS file for credits of original authorship.
Installing RTM
--------------
Prerequisite:
Besides a standard build environment (make, C compiler, etc)
on your system, the only external prerequisite is the F2C
Fortran to C translator Library. See README.f2c.txt
Typical steps to download, compile and install the RTM models are:
Download rtm-XXXX.tar.gz from
http://casil.ucdavis.edu/project/showfiles.php?group_id=40
where XXXX is the most recent release number. Then:
tar zxf rtm-XXXX.tar.gz
cd rtm-XXXX
./configure
make
make install
All program names are given the prefix ``rtm.'' on installation.
The --program-prefix configure option can be used to change this
prefix.
By default, /usr/local/ is used as base directory to find the F2C
header (include/f2c.h) and library (lib/libf2c.a). To specify a
different location, use the option --with-f2c=dir where dir is the
directory to use as prefix.
See INSTALL for more configure options.
Status and documentation
------------------------
This is an open source software project and you are welcome to use the
tool and contribute to this ongoing project. Please read the copyright
agreement (copyright.txt). The project is managed through the gforge
website at: http://casil.ucdavis.edu/projects/rtm/
The RTM main website is located at: http://rtm.casil.ucdavis.edu/
Changes:
2005-10-06 (version 1.0.6)
- Only a fix in creation of distribution (thanks Massimo for
reporting the "install-sh missing" problem.)
2005-05-18 (version 1.0.5)
- Adjustments for export for public distribution
- New src/include/cstars-rtm.h
- RTM_VERSION_IN_USAGE: RTM version included in usage message of
all model main programs.
2005-05-15 (version 1.0.2)
- Released version 1.0.2: Using pkgdatadir to store some required
data files for prospect-based models.
- By default --program-prefix=rtm.
- Added --with-f2c=dir option
- Checks for F2C header and library
2005-05-14
- General reorganization of source code (no changes in functionality)
- Build is now based on autoconf/automake.
|