1
2
3
4
5
6
7 package org.astrogrid.datacenter.units;
8
9
10 import java.net.URL;
11 import org.apache.commons.logging.Log;
12 import org.apache.commons.logging.LogFactory;
13
14 /***
15 * Used to access/use UCDs
16 * <p>
17 * @author M Hill
18 */
19
20 public class UnitDictionary
21 {
22 public static final String UNIT_REF = "http://vizier.u-strasbg.fr/cgi-bin/Unit";
23 public static final String UNIT_LIST = "http://vizier.u-strasbg.fr/cgi-bin/Unit?%3f";
24
25 protected static Log log = LogFactory.getLog(UnitDictionary.class);
26
27 public UnitDictionary() {
28 init();
29 }
30
31 /*** Initialise dictionary - load list of keywords and descriptions from vizier
32 * @todo
33 */
34 public void init() {
35 }
36
37 }
38
39