1
2
3
4
5
6
7 package org.astrogrid.datacenter.ucd;
8
9 import java.net.URL;
10 import org.apache.commons.logging.Log;
11 import org.apache.commons.logging.LogFactory;
12
13 /***
14 * Used to access/use UCDs
15 * <p>
16 * @author M Hill
17 */
18
19 public class UcdDictionary
20 {
21 public static final String UCD1REF = "http://cdsweb.u-strasbg.fr/UCD/old/";
22 public static final String UCD1LIST = "http://cdsweb.u-strasbg.fr/viz-bin/UCDs";
23
24 public static final String UCD1PREF = "http://vizier.u-strasbg.fr/doc/UCD/inVizieR.htx";
25 public static final String UCD1PLIST = "http://vizier.u-strasbg.fr/UCD/ucd1p-words.txt";
26
27 protected static Log log = LogFactory.getLog(UcdDictionary.class);
28
29 public UcdDictionary() {
30 init();
31 }
32
33 /*** Initialise dictionary - load list of keywords and descriptions from vizier
34 * @todo
35 */
36 public void init() {
37 }
38
39 }
40
41