UDUNITS 2.2.26 Manual

Table of Contents

Next: , Previous: (dir), Up: (dir)   [Contents][Index]

UDUNITS-2

This manual describes the UDUNITS-2 package, which contains a C library for units of physical quantities and a unit-definition and value-conversion utility.

Copyright 2014 University Corporation for Atmospheric Research and contributors. All rights reserved.

This software was developed by the Unidata Program Center of the University Corporation for Atmospheric Research (UCAR) <http://www.unidata.ucar.edu>.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3) Neither the names of the development group, the copyright holders, nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. 4) This license shall terminate automatically and you may no longer exercise any of the rights granted to you by this license as of the date you commence an action, including a cross-claim or counterclaim, against the copyright holders or any contributor alleging that this software infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of this software with other software or hardware.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.


Next: , Previous: Top, Up: Top   [Contents][Index]

1 Introduction

The UDUNITS-2 package provides support for units of physical quantities. Its three main components are: 1) (udunits2lib)a C library for units of physical quantities; 2) (udunits2prog)a utility; for obtaining the definition of a unit and for converting numeric values between compatible units; and 3) an extensive database of units.


Next: , Previous: Introduction, Up: Top   [Contents][Index]

2 How This Package Differs from the Original UDUNITS Package

The UDUNIT-2 package differs from the UDUNITS-1 package in the following ways:

One thing that has not changed is that almost all unit string specifications understood by the UDUNITS-1 package are also understood by the UDUNITS-2 package. One exception is the symbol g, which in version 1 of the package was associated with standard free fall (a unit of accelleration) but which is associated with the unit gram in version 2 of the package.


Next: , Previous: Differences, Up: Top   [Contents][Index]

3 Installing this Package


Next: , Up: Installation   [Contents][Index]

3.1 Installing from a Binary Distribution

3.1.1 64-bit CentOS 6.4

If your operating system is compatible with 64-bit CentOS 6.4 (e.g., your system is 64-bit CentOS, Fedora, or RedHat), then create the file /etc/yum.repos.d/unidata.repo with the following contents:

[unidata]
name=Unidata Repository
baseurl=http://www.unidata.ucar.edu/repos/yum/CentOS/6/$basearch
enabled=1

You should then be able to install this package in the usual manner. For example,

su -
yum install udunits

3.1.2 32-bit Ubuntu 12

If your operating system is compatible with 32-bit Ubuntu 12 (precious pangolin) (e.g., your system is 32-bit Debian or Ubuntu), then add the following line to the file /etc/apt/sources.list or /etc/apt/sources.list.d/unidata.list:

deb http://www.unidata.ucar.edu/repos/apt i386/

You should then be able to install this package in the usual manner. For example,

su -
apt-get update
apt-get install udunits

Previous: Binary, Up: Installation   [Contents][Index]

3.2 Installing from a Source Distribution


Next: , Up: Source   [Contents][Index]

3.2.1 Prerequisites for This Package

The Expat library and header-files must be installed. Look for the library "libexpat" and the header-file "expat.h".

If this package is to be tested (which is optional), then the CUnit library and header-files must be installed. Look for the library "libcunit" and the header-files "CUnit/CUnit.h" and "CUnit/Basic.h".

If this package is to be built on a Windows system, then the CMake and MinGW packages must be installed. Look for the utility "cmake" and the directory/folder "MinGW".


Next: , Previous: Prerequisites, Up: Source   [Contents][Index]

3.2.2 Obtaining this Package

Get the source for this package from its download-page at ftp://ftp.unidata.ucar.edu/pub/udunits/ and unpack it in an appropriate place. For example,

su -
cd /usr/local/src
wget -O - ftp://ftp.unidata.ucar.edu/pub/udunits/udunits-2.2.26-Source.tar.gz |
gunzip -c | pax -r

Next: , Previous: Obtain, Up: Source   [Contents][Index]

3.2.3 Unix Installation Instructions


Next: , Up: Unix   [Contents][Index]

3.2.3.1 Autoconf-based Installation

Short instructions:

./configure [--prefix=root] [--disable-shared] [CC=path]
make
make check                      # optional; requires CUNIT installation
make install                    # also installs INFO documentation
make install-html install-pdf   # optional
make clean

By default, the installation root is /usr/local.

Long instructions:

  1. Go to the top-level source-directory of this package, e.g.,
    cd udunits-2.2.26
    
  2. If necessary, clean-up from a previous installation attempt by making the distclean target using the make utility from step 2:
    make distclean
    

    The option --disable-shared causes the build process to create a static library only: a sharable library is not created. This option is necessary if the libtool utility that’s included in this package can’t build a sharable library using the given compiler.

  3. Execute the configure script. Specify the installation prefix, the compiler from the previous step, and any required option. For example, if you are on an HP-UX system and want to use the /bin/c89 compiler and install under /opt, then the following command is appropriate:
    ./configure --prefix=/opt --disable-shared CC=/bin/c89
    

    If the installation prefix is not specified, then the default is to install under /usr/local.

    If the compiler isn’t specified, then the default is to use gcc.

  4. Build this package by making the default target using the make utility from step 2:
    make
    
  5. If you wish to verify that this package works correctly, then make the check target using the make utility from step 2:
    make check
    

    This step is only effective if the configure script found an installed CUNIT unit-testing package. If that package wasn’t found, then the above command will quickly exit without testing this package.

  6. Install the (udunits2lib)library, (udunits2prog)utility, header-files, units-database, and INFO documentation files by making the install target using the make utility from step 2:
    make install
    
  7. If desired, install the HTML and PDF documentation files by making one or more of the following targets using the make utility from step 2:
    make install-html install-pdf
    
  8. Clean up by making the clean target using the make utility from step 2:
    make clean
    

Previous: Autoconf, Up: Unix   [Contents][Index]

3.2.3.2 CMake-based Installation

cmake
make all [test] install [install_test]

where the arguments in square brackets are optional.


Previous: Unix, Up: Source   [Contents][Index]

3.2.4 Windows Installation Instructions

Currently, only a 32-bit MinGW-based installation is supported:

cmake -G "MinGW Makefiles"
cmake --build . [-DCMAKE_INSTALL_PREFIX=dir] -- all [test] install [install_test]

where arguments in square brackets are optional.

The default installation-prefix is "C:\Program Files (x86)\udunits-2.minor.bug", where minor and bug are the minor version and bug-fix level, respectively.


Next: , Previous: Installation, Up: Top   [Contents][Index]

4 Unit Library

See (udunits2lib)UDUNITS Library, for details on this package’s unit library.


Next: , Previous: Library, Up: Top   [Contents][Index]

5 Unit Utility

See (udunits2prog)UDUNITS Utility, for details on this package’s unit utility.


Next: , Previous: Utility, Up: Top   [Contents][Index]

6 The Units Database

The database for the UDUNITS-2 package comprises one XML file containing unit prefixes and four XML files containing unit definitions:


Next: , Previous: Database, Up: Top   [Contents][Index]

7 Support for this Package

The home-page for this package can be found at http://www.unidata.ucar.edu/software/udunits/.

Bug reports should be sent to support-udunits@unidata.ucar.edu.


Previous: Support, Up: Top   [Contents][Index]

Index

Jump to:   D   I   L   O   P   S   U  
Index Entry  Section

D
database: Database

I
installation: Installation
Installation, binary: Binary
Installation, source: Source
Introduction: Introduction

L
Library, unit: Library

O
obtaining this package: Obtain

P
package, support: Support
prerequisites for this package: Prerequisites

S
support: Support

U
Utility, unit: Utility

Jump to:   D   I   L   O   P   S   U