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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>CODA Documentation</title>
<link rel="stylesheet" href="css/codadoc.css" type="text/css" />
</head>
<body>
<div class="main">
<img alt="*" src="images/coda-large.png" />
<h1>CODA Documentation</h1>
<p>The Common Data Access toolbox (CODA) provides a set of tools for ingesting, processing, and analyzing remote sensing data.</p>
<p>CODA consists of several modules. These modules can be applications, libraries, interfaces to existing applications (such as IDL and MATLAB), or interfaces to other programming languages (such as Fortran and Python). All modules deal with direct access to product data. With the CODA software you will be able to access each and every piece of data that is inside a product. In order to read data via this interface, you will first have to familiarize yourself with the structural layout of the products you want to access. The CODA interface provides functions to dynamically retrieve structural information of a product, but the easiest way to find your away around in a product is to have a look at the Data Definition documentation. This documentation provides an overview of the structure descriptions for each of the CODA supported products and is included with the CODA package.</p>
<h2>Installing CODA</h2>
<p>For installation instructions for CODA look at the INSTALL file that comes with each downloadable source package.</p>
<h2>CODA Product Format Definitions</h2>
<p>CODA uses a single view on data, independent of the underlying basic ascii/binary/xml/netcdf/hdf4/hdf5 file format.</p>
<p>A description of the common type system that CODA uses to provide a hierarchical view on data can be found in the CODA Product Format Definition Description Format documentation:</p>
<ul>
<li><a href="codadef/codadef-format.html">CODA Product Format Definition Description Format</a></li>
</ul>
<p>In order for CODA to be able to access a file, it will need to now about the format. For self-describing data formats such as netCDF/HDF, CODA can determine the format definition from the file itself (see below for mapping descriptions), but for other kinds of products you will need to have a CODA product format definition (.codadef) file containing the format definitions of the products that you want to access. Note that the CODA software package does not come with any .codadef files itself, but other software that embed CODA often do. In addition, on the CODA website you can find a set of .codadef files as well.<p>
<p>In order to use .codadef files, you must make sure that CODA knows where to find them. It is therefore important that you make sure that the <b>CODA definition path is properly set</b>. There are several ways to do this:</p>
<ul>
<li>Put your .codadef file in the default location for CODA definition files (<code><prefix>/definitions</code> on Windows and <code><prefix>/share/coda/definitions</code> on Linux/MacOSX; note that software that embed CODA may use their own default locations). However, only the CODA command line tools and IDL and MATLAB interfaces will use this default location. For the other interfaces you will have to use one of the options below.</li>
<li>Set the <code>CODA_DEFINITION</code> environment variable. This environment variable should be a ':' separated (';' on Windows) list of absolute paths to directories containing .codadef files or absolute paths to .codadef files themselves (or a mix of those).</li>
<li>Set the CODA definition path programmatically (for e.g. C, Fortran, Java). See the interface documentation below for details.</li>
</ul>
<p>For formats that are self-describing or that are too complex to be captured by .codadef files, CODA comes with a special backend to deal with the format. The file formats that CODA supports in thise way (and thus don't require .codadef files per se) are XML, netCDF, CDF, GRIB, HDF4, HDF5, RINEX, and SP3. The approach that CODA uses to map the data from the native file format to CODA data types can be found in the mapping descriptions for each format below:</p>
<ul>
<li><a href="codadef/codadef-xml.html">CODA XML Mapping Description</a></li>
<li><a href="codadef/codadef-netcdf.html">CODA netCDF Mapping Description</a></li>
<li><a href="codadef/codadef-cdf.html">CODA CDF Mapping Description</a></li>
<li><a href="codadef/codadef-grib.html">CODA GRIB Mapping Description</a></li>
<li><a href="codadef/codadef-hdf4.html">CODA HDF4 Mapping Description</a></li>
<li><a href="codadef/codadef-hdf5.html">CODA HDF5 Mapping Description</a></li>
<li><a href="codadef/codadef-rinex.html">CODA RINEX Mapping Description</a></li>
<li><a href="codadef/codadef-sp3.html">CODA SP3 Mapping Description</a></li>
</ul>
<h2>CODA Expression Language</h2>
<p>CODA comes with an expression language that can be used to perform simple operations on product data. It is used in tools such as codafind and codaeval but is also used inside CODA product format definitions for e.g. determining array sizes, bit offsets, etc. This expression language is described in the CODA Expressions documentation:</p>
<ul>
<li><a href="codadef/codadef-expressions.html">CODA Expressions</a></li>
</ul>
<h2>C interface</h2>
<p>The C interface is the foundation of CODA upon which all other CODA tools are build. As a developer you can also use this library and gain easy, high-performance access to all data in products that are supported by CODA.</p>
<p>A description of the C interface can be found in the CODA C interface documentation:</p>
<ul>
<li><a href="libcoda/index.html">CODA C interface documentation</a></li>
</ul>
<h2>Fortran interface</h2>
<p>The Fortran interface provides a small wrapper for the C Library and allows you to call its functions from your Fortran 77/90 programs.</p>
<p>A description of the Fortran interface can be found in the CODA Fortran interface documentation:</p>
<ul>
<li><a href="fortran/index.html">CODA Fortran interface documentation</a></li>
</ul>
<h2>IDL interface</h2>
<p>The IDL interface provides a wrapper for the C Library through a small set of powerful functions (such as <code>coda_fetch</code>) which are available from within IDL.</p>
<p>A description of the IDL interface can be found in the CODA IDL interface documentation:</p>
<ul>
<li><a href="idl/index.html">CODA IDL interface documentation</a></li>
</ul>
<h2>MATLAB interface</h2>
<p>The MATLAB interface provides a wrapper for the C Library through a small set of powerful functions (such as <code>coda_fetch</code>) which are available from within MATLAB.</p>
<p>A description of the MATLAB interface can be found in the CODA MATLAB interface documentation:</p>
<ul>
<li><a href="matlab/index.html">CODA MATLAB interface documentation</a></li>
</ul>
<h2>Python interface</h2>
<p>The Python interface provides a wrapper for the CODA C Library. The Python interface contains both direct wrappers for the C Library functions (so you can traverse a product using the so-called CODA cursors) as well as the more high level functions that can be found in the IDL and MATLAB interfaces (e.g. <code>coda_fetch</code>).</p>
<p>A description of the Python interface can be found in the CODA Python interface documentation:</p>
<ul>
<li><a href="python/index.html">CODA Python interface documentation</a></li>
</ul>
<h2>Java interface</h2>
<p>The Java interface provides a wrapper for the CODA C Library using JNI. The Java interface wraps the C Library functions behind classes for CODA Products, Types, and Cursors.</p>
<p>A description of the Java interface can be found in the CODA Java interface documentation:</p>
<ul>
<li><a href="java/index.html">CODA Java interface documentation</a></li>
</ul>
<h2>codacheck</h2>
<p>With codacheck it is possible to provide a basic sanity check on product files.</p>
<p>More information about this tool can be found in the codacheck documentation:</p>
<ul>
<li><a href="codacheck/index.html">codacheck documentation</a></li>
</ul>
<h2>codacmp</h2>
<p>With codacmp two product files can be compared. In other words, it is a 'diff' tool for product data. The tool is primarily intended for verification purposes.</p>
<p>More information about this tool can be found in the codacmp documentation:</p>
<ul>
<li><a href="codacmp/index.html">codacmp documentation</a></li>
</ul>
<h2>codadd</h2>
<p>The codadd tool allows for a quick validation of .codadef files and is able to generate HTML documentation for the product format definitions that are inside the .codadef files.</p>
<p>More information about this tool can be found in the codadd documentation:</p>
<ul>
<li><a href="codadd/index.html">codadd documentation</a></li>
</ul>
<h2>codadump</h2>
<p>With the codadump command line tool you can view data from any product file that is supported by CODA. The tool allows you to inspect the product structure (including array sizes), view and export data from the product in ASCII format, and export data into HDF4 format.</p>
<p>More information about this tool can be found in the codadump documentation:</p>
<ul>
<li><a href="codadump/index.html">codadump documentation</a></li>
</ul>
<h2>codaeval</h2>
<p>CODA comes with an <a href="codadef/codadef-expressions.html">expression language</a>. The codaeval tool allows you to run such an expression on one or more product files, or you can use it as a quick way to just syntactically and grammatically check an expression.</p>
<p>More information about this tool can be found in the codaeval documentation:</p>
<ul>
<li><a href="codaeval/index.html">codaeval documentation</a></li>
</ul>
<h2>codafind</h2>
<p>The codafind command line tool allows you to search files and directories for product files that are supported by CODA. The tool comes with a very powerful filtering mechanism that makes it possible to search for only those product files that match certain filter criteria.</p>
<p>More information about this tool can be found in the codafind documentation:</p>
<ul>
<li><a href="codafind/index.html">codafind documentation</a></li>
</ul>
<div class="footer">
<hr />
<p>Copyright © 2007-2020 <b>s<span class="soft-red">[</span>&<span class="soft-red">]</span>t</b>, The Netherlands.</p>
</div>
</div>
</body>
</html>
|