Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1003 / libraries / libCq_CMS_praster / src / org / cresques / io / data / RasterMetaFileTags.java @ 12271

History | View | Annotate | Download (3 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2006 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19
package org.cresques.io.data;
20

    
21
/**
22
 * Tags que corresponden al fichero XML .rmf (Raster Metafile) 
23
 * @author Nacho Brodin (brodin_ign@gva.es)
24
 */
25
public class RasterMetaFileTags {
26
        public static final String NAMESPACE = "http://www.gvsig.org";
27
        public static final String ENCODING = "ISO-8859-15";
28
        public static final String MAIN_TAG = "RasterMetaFile";
29
        public static final String LAYER = "FLyrGeoRaster";
30
        public static final String VIEWPORT = "ViewPort";
31
        public static final String PROJ = "Projection";
32
        public static final String BBOX = "Extent";
33
        public static final String POSX = "X";
34
        public static final String POSY = "Y";
35
        public static final String ROTX = "RotationX";
36
        public static final String ROTY = "RotationY";
37
        public static final String PX_SIZE_X = "PixelSizeX";
38
        public static final String PX_SIZE_Y = "PixelSizeY";
39
        public static final String WIDTH = "Width";
40
        public static final String HEIGHT = "Height";
41
        public static final String PX_WIDTH = "ImagePxWidth";
42
        public static final String PX_HEIGHT = "ImagePxHeight";
43
        public static final String DIM = "Dimension";
44
        
45
        public static final String GEOPOINTS = "GeoPoints";
46
        public static final String GEOPOINT = "GeoPoint";
47
        public static final String GEOPOINT_PX = "PixelX";
48
        public static final String GEOPOINT_PY = "PixelY";
49
        public static final String GEOPOINT_MAPX = "MapX";
50
        public static final String GEOPOINT_MAPY = "MapY";
51
        public static final String GEOPOINT_ACTIVE = "Active";
52
        public static final String GEOPOINT_LCENTER = "LeftCenterPoint";
53
        public static final String GEOPOINT_RCENTER = "RightCenterPoint";
54
        public static final String GEOPOINT_LVP = "LeftViewPort";
55
        public static final String GEOPOINT_RVP = "RightViewPort";
56
                
57
        public static final String POINTS_LYR = "Layer";
58
        public static final String POINTS_VP = "ViewPortData";
59
        public static final String POINTS_PROJ = "Proj";
60
        public static final String POINTS_ZOOM = "Zoom";
61
        public static final String POINTS_BBOX = "Bbox";
62
        public static final String POINTS_PX = "Px";
63
        public static final String POINTS_PY = "Py";
64
        public static final String POINTS_W = "WCWidth";
65
        public static final String POINTS_H = "WCHeight";
66
        public static final String POINTS_DIM = "Pdim";
67
}