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 @ 40559

History | View | Annotate | Download (3.91 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
/**
25
 *
26
 */
27
package org.gvsig.remoteclient.utils;
28

    
29
/**
30
 * @author jaume
31
 *
32
 */
33
public class DescribeCoverageTags {
34
        private DescribeCoverageTags() {};
35
    public static final String COVERAGE_DESCRIPTION = "CoverageDescription";
36
    public static final String COVERAGE_OFFERING = "CoverageOffering";
37
    public static final String NAME = "name";
38
    public static final String LABEL = "label";
39
    public static final String LONLAT_ENVELOPE = "lonLatEnvelope";
40
        public static final String WGS84 = "WGS84(DD)"; // Decimal Degree
41
        public static final String GML_ENVELOPE = "gml:Envelope";
42
        public static final String GML_POS = "gml:pos";
43
        public static final String SRSNAME = "srsName";
44

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

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

    
77
        public static final String SUPPORTED_CRSS = "supportedCRSs";
78
        public static final String REQUEST_RESPONSE_CRSS = "requestResponseCRSs";
79
        public static final String NATIVE_CRS = "nativeCRSs";
80
        public static final String REQUEST_CRSS = "requestCRSs";
81
        public static final String RESPONSE_CRSS = "responseCRSs";
82

    
83
        public static final String SUPPORTED_FORMATS = "supportedFormats";
84
        public static final String NATIVE_FORMAT = "nativeFormat";
85
        public static final String FORMATS = "formats";
86
        public static final String SUPPORTED_INTERPOLATIONS = "supportedInterpolations";
87
        public static final String INTERPOLATION_METHOD = "interpolationMethod";
88

    
89

    
90
}