Statistics
| Revision:

gvsig-raster / org.gvsig.raster / branches / org.gvsig.raster.2.4 / org.gvsig.wcs / org.gvsig.wcs.provider / src / main / resources / org / gvsig / wcs / provider / WCSRasterParameters.xml @ 8786

History | View | Annotate | Download (2.62 KB)

1 6549 fdiaz
<?xml version="1.0"?>
2
<definitions>
3
  <version>1.0.0</version>
4
  <classes>
5
6
    <class name="WCSRasterProviderParameters">
7
       <extends>
8
        <class namespace="dal" name="ProviderParameters"/>
9
      </extends>
10
      <description>Store the parameters need to open WCS</description>
11
      <fields>
12
13
        <field name="service" type="url" mandatory="true" group="Basic">
14
          <description>WCS service</description>
15
        </field>
16
17
        <field name="coveragename" type="string" mandatory="true" group="Basic">
18
          <description>Name of coverage to be downloaded</description>
19
        </field>
20
21
        <field name="format" type="string" mandatory="false" group="Basic">
22
          <description>Image format to be downloaded
23
          </description>
24
        </field>
25
26
        <field name="crs" type="crs" mandatory="true" group="Basic">
27
          <description>The coordinate reference system used in GoogleMaps</description>
28
        </field>
29
30
         <field name="interpolation" type="string" mandatory="false" group="Basic">
31
          <description>Interpolation method</description>
32
        </field>
33
34
<!--         <field name="info_format" type="string" mandatory="false" group="Basic">
35
          <description>Image format to be downloaded
36
          </description>
37
        </field>
38

39
        <field name="xyaxisorder" type="boolean" mandatory="false" group="Basic">
40
          <description>Assume xy axis order</description>
41
        </field>
42

43
        <field name="transparency" type="boolean" mandatory="false" group="Basic">
44
          <description>Background transparency</description>
45
        </field>
46
 -->
47
        <field name="time" type="string" mandatory="false" group="Basic">
48
          <description>Time
49
          </description>
50
        </field>
51
52
         <field name="bands" type="List" subtype="String"
53
          mandatory="false" defaultValue="" group="Service">
54
          <description>Bands</description>
55
          <tags>
56
            <value name="ViewMode" value="SimpleTable" />
57
          </tags>
58
        </field>
59
60
      </fields>
61
    </class>
62
63
64 8786 fdiaz
    <class name="WCS">
65 6549 fdiaz
       <extends>
66
        <class namespace="dal" name="ProviderParameters"/>
67
      </extends>
68
      <description>Store the parameters need to open WCS</description>
69
      <fields>
70
71
        <field name="service" type="url" mandatory="true" group="Basic">
72
          <description>WCS host server</description>
73
        </field>
74
75 8786 fdiaz
        <field name="override_capabilities" type="boolean" mandatory="false" defaultValue="false" group="Basic">
76
          <description>Overrides cached capabilities file</description>
77
        </field>
78
79
80 6549 fdiaz
      </fields>
81
    </class>
82
83
  </classes>
84
</definitions>