Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / utils / DescribeCoverageTags.java @ 40769

History | View | Annotate | Download (3.88 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.utils;
25

    
26
public class DescribeCoverageTags {
27
        private DescribeCoverageTags() {};
28
    public static final String COVERAGE_DESCRIPTION = "CoverageDescription";
29
    public static final String COVERAGE_OFFERING = "CoverageOffering";
30
    public static final String NAME = "name";
31
    public static final String LABEL = "label";
32
    public static final String LONLAT_ENVELOPE = "lonLatEnvelope";
33
        public static final String WGS84 = "WGS84(DD)"; // Decimal Degree
34
        public static final String GML_ENVELOPE = "gml:Envelope";
35
        public static final String GML_POS = "gml:pos";
36
        public static final String SRSNAME = "srsName";
37

    
38
        public static final String DOMAINSET = "domainSet";
39
        public static final String SPATIALDOMAIN = "spatialDomain";
40
        public static final String GRID = "gml:Grid";
41
        public static final String RECTIFIEDGRID = "gml:RectifiedGrid";
42
        public static final String GML_GRIDENVELOPE = "gml:GridEnvelope";
43
        public static final String GML_LIMITS = "gml:limits";
44
        public static final String GML_AXISNAME = "gml:axisName";
45
        public static final String GML_ORIGIN = "gml:origin";
46
        public static final String DIMENSION = "dimension";
47
        public static final String GML_LOW = "gml:low";
48
        public static final String GML_HIGH = "gml:high";
49
        public static final String OFFSETVECTOR = "gml:offsetVector";
50
        public static final String TEMPORALDOMAIN = "temporalDomain";
51
        public static final String GML_TIMEPOSITION = "gml:timePosition";
52
        public static final String TIMEPERIOD = "timePeriod";
53
        public static final String BEGINPOSITION = "beginPosition";
54
        public static final String ENDPOSITION = "endPosition";
55
        public static final String TIMERESOLUTION = "timeResolution";
56

    
57
        public static final String RANGESET = "RangeSet";
58
        /* TODO this can cause eventually problems if in a future the "rangeSet" (not "RangeSet")
59
         * has more than one sub RangeSet subelement since I'm assuming it and a "rangeSet" tag is
60
         * simply ignored since it has no effect if it just contains one, and only one, RangeSet
61
         * subelement.
62
         */
63
        public static final String AXISDESCRIPTION = "AxisDescription" ;
64
        public static final String VALUES = "values";
65
        public static final String SINGLEVALUE = "singleValue";
66
        public static final String INTERVAL = "interval";
67
        public static final String DEFAULT = "default";
68
        public static final String NULLVALUES = "NullValues";
69

    
70
        public static final String SUPPORTED_CRSS = "supportedCRSs";
71
        public static final String REQUEST_RESPONSE_CRSS = "requestResponseCRSs";
72
        public static final String NATIVE_CRS = "nativeCRSs";
73
        public static final String REQUEST_CRSS = "requestCRSs";
74
        public static final String RESPONSE_CRSS = "responseCRSs";
75

    
76
        public static final String SUPPORTED_FORMATS = "supportedFormats";
77
        public static final String NATIVE_FORMAT = "nativeFormat";
78
        public static final String FORMATS = "formats";
79
        public static final String SUPPORTED_INTERPOLATIONS = "supportedInterpolations";
80
        public static final String INTERPOLATION_METHOD = "interpolationMethod";
81

    
82

    
83
}