Statistics
| Revision:

root / org.gvsig.dgn / trunk / org.gvsig.dgn / org.gvsig.dgn.provider / src / main / java / org / gvsig / fmap / dal / store / dgn / lib / DGNInfo.java @ 6

History | View | Annotate | Download (2.62 KB)

1
/*
2
 * Created on 17-jul-2003
3
 *
4
 * Copyright (c) 2003
5
 * Francisco Jos? Pe?arrubia Mart?nez
6
 * IVER Tecnolog?as de la Informaci?n S.A.
7
 * Salamanca 50
8
 * 46005 Valencia (        SPAIN )
9
 * +34 963163400
10
 * mailto:fran@iver.es
11
 * http://www.iver.es
12
 */
13
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
14
 *
15
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
16
 *
17
 * This program is free software; you can redistribute it and/or
18
 * modify it under the terms of the GNU General Public License
19
 * as published by the Free Software Foundation; either version 2
20
 * of the License, or (at your option) any later version.
21
 *
22
 * This program is distributed in the hope that it will be useful,
23
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
 * GNU General Public License for more details.
26
 *
27
 * You should have received a copy of the GNU General Public License
28
 * along with this program; if not, write to the Free Software
29
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
30
 *
31
 * For more information, contact:
32
 *
33
 *  Generalitat Valenciana
34
 *   Conselleria d'Infraestructures i Transport
35
 *   Av. Blasco Ib??ez, 50
36
 *   46010 VALENCIA
37
 *   SPAIN
38
 *
39
 *      +34 963862235
40
 *   gvsig@gva.es
41
 *      www.gvsig.gva.es
42
 *
43
 *    or
44
 *
45
 *   IVER T.I. S.A
46
 *   Salamanca 50
47
 *   46005 Valencia
48
 *   Spain
49
 *
50
 *   +34 963163400
51
 *   dac@iver.es
52
 */
53
package org.gvsig.fmap.dal.store.dgn.lib;
54

    
55
/**
56
 * Clase que almacena informaci?n del elemento.
57
 *
58
 * @author Vicente Caballero Navarro
59
 */
60
public class DGNInfo {
61
        public String fp;
62
        public int ftall;
63
        public int next_element_id;
64
        public int nElemBytes;
65
        public byte[] abyElem = new byte[131076]; //131076
66

    
67
        //byte[] temporal=new byte[4];
68
        public int got_tcb;
69
        public int dimension;
70
        public int options;
71
        public double scale;
72
        public double origin_x;
73
        public double origin_y;
74
        public double origin_z;
75
        public int index_built;
76
        public int element_count;
77
        public int max_element_count;
78
        public DGNElementInfo[] element_index;
79
        public int got_color_table;
80
        public byte[][] color_table = new byte[256][3]; //256 3
81
        public int got_bounds;
82
        public double min_x;
83
        public double min_y;
84
        public double min_z;
85
        public double max_x;
86
        public double max_y;
87
        public double max_z;
88
        public int has_spatial_filter;
89
        public int sf_converted_to_uor;
90
        public int select_complex_group;
91
        public int in_complex_group;
92
        public long sf_min_x;
93
        public long sf_min_y;
94
        public long sf_max_x;
95
        public long sf_max_y;
96
        public double sf_min_x_geo;
97
        public double sf_min_y_geo;
98
        public double sf_max_x_geo;
99
        public double sf_max_y_geo;
100
}