1 package edu.iris.dmc.seedcodec;
2
3 /***
4 * Constants for the various data compression types in seed blockette 1000.
5 * @see http://www.fdsn.org
6 *
7 *
8 * Created: Thu Nov 21 16:35:37 2002
9 *
10 * @author <a href="mailto:crotwell@seis.sc.edu">Philip Crotwell</a>
11 * @version
12 */
13
14 public interface B1000Types {
15
16 /*** ascii */
17 public static final int ASCII = 0;
18
19 /*** 16 bit integer, or java short */
20 public static final int SHORT = 1;
21
22 /*** 24 bit integer */
23 public static final int INT24 = 2;
24
25 /*** 32 bit integer, or java int */
26 public static final int INTEGER = 3;
27
28 /*** ieee float */
29 public static final int FLOAT = 4;
30
31 /*** ieee double*/
32 public static final int DOUBLE = 5;
33
34 /*** Steim1 compression */
35 public static final int STEIM1 = 10;
36
37 /*** Steim2 compression */
38 public static final int STEIM2 = 11;
39
40
41 }