Statistics
| Revision:

svn-gvsig-desktop / tags / Root_v06 / libraries / libRemoteServices / src / org / gvsig / remoteClient / utils / DescribeCoverageTags.java @ 4811

History | View | Annotate | Download (3.94 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 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
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
/**
42
 * 
43
 */
44
package org.gvsig.remoteClient.utils;
45

    
46
/**
47
 * @author jaume
48
 *
49
 */
50
public class DescribeCoverageTags {
51

    
52
    public static final String COVERAGE_DESCRIPTION = "CoverageDescription";
53
    public static final String COVERAGE_OFFERING = "CoverageOffering";
54
    public static final String NAME = "name";
55
    public static final String LABEL = "label";
56
    public static final String LONLAT_ENVELOPE = "lonLatEnvelope";
57
        public static final String WGS84 = "WGS84(DD)"; // Decimal Degree
58
        public static final String GML_ENVELOPE = "gml:Envelope";
59
        public static final String GML_POS = "gml:pos";
60
        public static final String SRSNAME = "srsName";
61
        
62
        public static final String DOMAINSET = "domainSet";
63
        public static final String SPATIALDOMAIN = "spatialDomain";
64
        public static final String RECTIFIEDGRID = "gml:RectifiedGrid";
65
        public static final String GML_GRIDENVELOPE = "gml:GridEnvelope";
66
        public static final String GML_LIMITS = "gml:limits";
67
        public static final String GML_AXISNAME = "gml:axisName";
68
        public static final String GML_ORIGIN = "gml:origin";
69
        public static final String DIMENSION = "dimension";
70
        public static final String GML_LOW = "gml:low";
71
        public static final String GML_HIGH = "gml:high";
72
        public static final String OFFSETVECTOR = "gml:offsetVector";
73
        public static final String TEMPORALDOMAIN = "temporalDomain";
74
        public static final String GML_TIMEPOSITION = "gml:timePosition";
75
        public static final String TIMEPERIOD = "timePeriod";
76
        public static final String BEGINPOSITION = "beginPosition";
77
        public static final String ENDPOSITION = "endPosition";
78
        public static final String TIMERESOLUTION = "timeResolution";
79
          
80
        public static final String RANGESET = "RangeSet"; 
81
        /* TODO this can cause eventually problems if in a future the "rangeSet" (not "RangeSet")
82
         * has more than one sub RangeSet subelement since I'm assuming it and a "rangeSet" tag is
83
         * simply ignored since it has no effect if it just contains one, and only one, RangeSet
84
         * subelement.
85
         */
86
        public static final String AXISDESCRIPTION = "AxisDescription" ;
87
        public static final String VALUES = "values";
88
        public static final String SINGLEVALUE = "singleValue";
89
        public static final String INTERVAL = "interval";
90
        public static final String DEFAULT = "default";
91
        public static final String NULLVALUES = "NullValues";
92
        
93
        public static final String SUPPORTEDCRSS = "supportedCRSs";
94
        public static final String REQUESTRESPONSECRSS = "requestResponseCRSs";
95
        public static final String NATIVECRS = "nativeCRSs";
96
        public static final String REQUESTCRSS = "requestCRSs";
97
        public static final String RESPONSECRSS = "responseCRSs";
98
        
99
        public static final String SUPPORTEDFORMATS = "supportedFormats";
100
        public static final String NATIVEFORMAT = "nativeFormat";
101
        public static final String FORMATS = "formats";
102
        
103
        
104
}