001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/model/csct/units/resources/Units_en.java $
002    /*
003     * Map and oceanographical data visualisation
004     * Copyright (C) 1999 P�ches et Oc�ans Canada
005     *               2000 Institut de Recherche pour le D�veloppement
006     *
007     *
008     *    This library is free software; you can redistribute it and/or
009     *    modify it under the terms of the GNU Library General Public
010     *    License as published by the Free Software Foundation; either
011     *    version 2 of the License, or (at your option) any later version.
012     *
013     *    This library is distributed in the hope that it will be useful,
014     *    but WITHOUT ANY WARRANTY; without even the implied warranty of
015     *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
016     *    Library General Public License for more details (http://www.gnu.org/).
017     *
018     *
019     * Contacts:
020     *     FRANCE: Surveillance de l'Environnement Assist�e par Satellite
021     *             Institut de Recherche pour le D�veloppement / US-Espace
022     *             mailto:seasnet@teledetection.fr
023     *
024     *     CANADA: Observatoire du Saint-Laurent
025     *             Institut Maurice-Lamontagne
026     *             mailto:osl@osl.gc.ca
027     */
028    package org.deegree.model.csct.units.resources;
029    
030    
031    /**
032     * Noms d'unit�s en langue anglaise. Les unit�s qui n'apparaissent
033     * pas dans cette ressources ne seront pas localis�es.
034     *
035     * @version 1.0
036     * @author Martin Desruisseaux
037     */
038    public class Units_en extends Units
039    {
040        /**
041         * Liste des unit�s en anglais. Les cl�s sont les symboles
042         * standards (sauf exception) des unit�s. Les valeurs sont
043         * les noms en anglais de ces unit�s.
044         */
045        static final String[] contents=
046        {
047            "m",      "metre",
048            "g",      "gram",
049            "s",      "second",
050            "A",      "ampere",
051            "K",      "kelvin",
052            "mol",    "mole",
053            "cd",     "candela",
054            "rad",    "radian",
055            "sr",     "steradian",
056            "Hz",     "hertz",
057            "N",      "newton",
058            "Pa",     "pascal",
059            "J",      "joule",
060            "W",      "watt",
061            "C",      "coulomb",
062            "V",      "volt",
063            "F",      "farad",
064            "\u03A9", "Ohm",
065            "S",      "siemmens",
066            "T",      "tesla",
067            "Wb",     "weber",
068            "lx",     "lux",
069            "Bq",     "becquerel",
070            "Gy",     "gray",
071            "Sv",     "sievert",
072            "H",      "henry",
073            "lm",     "lumen",
074            "min",    "minute",
075            "h",      "hour",
076            "d",      "day",
077            "�",      "degree of angle",
078            "'",      "minute of angle",
079            "\"",     "seconde of angle",
080            "l",      "litre",
081            "L",      "litre",
082            "t",      "metric ton",
083            "eV",     "electronvolt",
084            "u",      "unified atomic mass unit",
085            "ua",     "astronomical unit",
086            "inch",   "inch",              // Symbole non-standard
087            "foot",   "foot",              // Symbole non-standard
088            "yard",   "yard",              // Symbole non-standard
089            "fathom", "English fathom",    // Symbole non-standard
090            "brasse", "French fathom",     // Symbole non-standard
091            "mile",   "mile",              // Symbole non-standard
092            "nmile",  "nautical mile",     // Symbole non-standard
093            "knot",   "knot",              // Symbole non-standard
094            "are",    "are",
095            "ha",     "hectare",
096            "bar",    "bar",
097            "�",      "�ngstr�m",
098            "barn",   "barn",
099            "erg",    "erg",
100            "dyn",    "dyne",
101            "P",      "poise",
102            "St",     "stokes",
103            "G",      "gauss",
104            "Oe",     "oersted",
105            "Mx",     "maxwell",
106            "sb",     "stilb",
107            "ph",     "phot",
108            "Gal",    "gal",
109            "Ci",     "curie",
110            "R",      "r�ntgen",
111            "rd",     "rad",
112            "rem",    "rem",
113            "Jy",     "jansky",
114            "Torr",   "torr",
115            "atm",    "standard atmosphere",
116            "pound",  "pound",             // Symbole non-standard
117            "onze",   "onze",              // Symbole non-standard
118            "�C",     "Celcius degree",
119            "�F",     "fahrenheit"         // Symbole non-standard
120        };
121    
122        /**
123         * Initialise les ressources anglaises.
124         */
125        public Units_en()
126        {super(contents);}
127    }