FWELanduse.xsd 10.8 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:FWEB="http://transfer.hft-stuttgart.de/pages/in-source/fwe-ade/FWEBuilding/v2.1/XSD" xmlns:FWEL="http://transfer.hft-stuttgart.de/pages/in-source/fwe-ade/FWELanduse/v2.1/XSD" xmlns:gml="http://www.opengis.net/gml" xmlns:luse="http://www.opengis.net/citygml/landuse/2.0" xmlns:sc="http://www.interactive-instruments.de/ShapeChange/AppInfo" elementFormDefault="qualified" targetNamespace="http://transfer.hft-stuttgart.de/pages/in-source/fwe-ade/FWELanduse/v2.1/XSD" version="2.1">
Rushikesh Padsala's avatar
Rushikesh Padsala committed
2
3
4
  <annotation>
    <documentation>This is the FWE ADE for CityGML landuse datasets developed in the IN-SOURCE project.</documentation>
  </annotation>
5
  <import namespace="http://transfer.hft-stuttgart.de/pages/in-source/fwe-ade/FWEBuilding/v2.1/XSD"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
6
  <import namespace="http://www.interactive-instruments.de/ShapeChange/AppInfo" schemaLocation="http://shapechange.net/resources/schema/ShapeChangeAppinfo.xsd"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
7
8
9
  <import namespace="http://www.opengis.net/citygml/landuse/2.0" schemaLocation="http://schemas.opengis.net/citygml/landuse/2.0/landUse.xsd"/>
  <import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengis.net/gml/3.1.1/base/gml.xsd"/>
  <!--XML Schema document created by ShapeChange - http://shapechange.net/-->
Rushikesh Padsala's avatar
Rushikesh Padsala committed
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <element name="EnergySurvey" substitutionGroup="FWEL:LandUseSurvey" type="FWEL:EnergySurveyType"/>
  <complexType name="EnergySurveyType">
    <complexContent>
      <extension base="FWEL:LandUseSurveyType">
        <sequence>
          <element minOccurs="0" name="spaceHeatingDemand" type="double"/>
          <element minOccurs="0" name="spaceHeatingDemandUnit" type="string"/>
          <element minOccurs="0" name="spaceCoolingDemand" type="double"/>
          <element minOccurs="0" name="spaceCoolingDemandUnit" type="string"/>
          <element minOccurs="0" name="residentialElectricityDemand" type="double"/>
          <element minOccurs="0" name="residentialElectricityDemandUnit" type="string"/>
          <element minOccurs="0" name="electricityPotentialFromPVBuildings" type="double"/>
          <element minOccurs="0" name="electricityPotentialFromPVBuildingsUnit" type="string"/>
          <element minOccurs="0" name="biomassPrimaryEnergyPotential" type="double"/>
          <element minOccurs="0" name="biomassPrimaryEnergyPotentialUnit" type="string"/>
25
26
27
28
29
30
31
32
33
34
35
36
          <element minOccurs="0" name="biomassPotentialForest" type="double"/>
          <element minOccurs="0" name="biomassPotentialForestUnit" type="string"/>
          <element minOccurs="0" name="biomassPotentialBiogas" type="double"/>
          <element minOccurs="0" name="biomassPotentialBiogasUnit" type="string"/>
          <element minOccurs="0" name="biomassPotentialPlantOil" type="double"/>
          <element minOccurs="0" name="biomassPotentialPlantOilUnit" type="string"/>
          <element minOccurs="0" name="biomassPotentialBioethanol" type="double"/>
          <element minOccurs="0" name="biomassPotentialBioethanolUnit" type="string"/>
          <element minOccurs="0" name="biomassPotentialResidualSolidFuel" type="double"/>
          <element minOccurs="0" name="biomassPotentialResidualSolidFuelUnit" type="string"/>
          <element minOccurs="0" name="biomassPotentialSolidFuel" type="double"/>
          <element minOccurs="0" name="biomassPotentialSolidFuelUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
37
38
39
40
          <element minOccurs="0" name="biomassToElectricityPotential" type="double"/>
          <element minOccurs="0" name="biomassToElectricityPotentialUnit" type="string"/>
          <element minOccurs="0" name="biomassToThermalPotential" type="double"/>
          <element minOccurs="0" name="biomassToThermalPotentialUnit" type="string"/>
41
42
          <element minOccurs="0" name="biomassWeight" type="double"/>
          <element minOccurs="0" name="biomassWeightUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="EnergySurveyPropertyType">
    <sequence minOccurs="0">
      <element ref="FWEL:EnergySurvey"/>
    </sequence>
    <attributeGroup ref="gml:AssociationAttributeGroup"/>
  </complexType>
  <element name="FoodSurvey" substitutionGroup="FWEL:LandUseSurvey" type="FWEL:FoodSurveyType"/>
  <complexType name="FoodSurveyType">
    <complexContent>
      <extension base="FWEL:LandUseSurveyType">
        <sequence>
          <element maxOccurs="unbounded" minOccurs="0" name="foodCategory" type="gml:CodeType"/>
          <element minOccurs="0" name="foodDemand" type="double"/>
          <element minOccurs="0" name="foodDemandUnit" type="string"/>
          <element minOccurs="0" name="foodProduction" type="double"/>
          <element minOccurs="0" name="foodProductionUnit" type="string"/>
          <element minOccurs="0" name="foodProductionWaterDemand" type="double"/>
          <element minOccurs="0" name="foodProductionWaterDemandUnit" type="string"/>
65
          <element minOccurs="0" name="cropCalorie" type="integer"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
66
          <element minOccurs="0" name="foodProductionEnergyDemand" type="double"/>
67
          <element minOccurs="0" name="cropCalorieUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
68
          <element minOccurs="0" name="foodProductionEngeryDemandUnit" type="string"/>
69
70
71
          <element minOccurs="0" name="vegetalCalorie" type="integer"/>
          <element minOccurs="0" name="vegetalCalorieUnit" type="string"/>
          <element minOccurs="0" name="animalCalorie" type="integer"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
72
          <element minOccurs="0" name="foodConsumption" type="double"/>
73
          <element minOccurs="0" name="animalCalorieUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
74
75
76
77
78
79
80
81
82
83
84
          <element minOccurs="0" name="foodConsumptionUnit" type="string"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="FoodSurveyPropertyType">
    <sequence minOccurs="0">
      <element ref="FWEL:FoodSurvey"/>
    </sequence>
    <attributeGroup ref="gml:AssociationAttributeGroup"/>
  </complexType>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  <element name="fweAreaName" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse" type="string">
    <annotation>
      <appinfo>
        <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="maxOccurs">1</taggedValue>
      </appinfo>
    </annotation>
  </element>
  <element name="fweSystemName" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse" type="string">
    <annotation>
      <appinfo>
        <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="maxOccurs">1</taggedValue>
      </appinfo>
    </annotation>
  </element>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
99
100
101
102
103
104
105
  <element name="consistsOfFWEsurvey" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse" type="FWEL:LandUseSurveyPropertyType">
    <annotation>
      <appinfo>
        <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="relationType">composition</taggedValue>
      </appinfo>
    </annotation>
  </element>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
106
107
108
109
110
  <element name="LandUseSurvey" substitutionGroup="gml:_Feature" type="FWEL:LandUseSurveyType"/>
  <complexType name="LandUseSurveyType">
    <complexContent>
      <extension base="gml:AbstractFeatureType">
        <sequence>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
111
          <element maxOccurs="unbounded" minOccurs="0" name="surveyYear" type="integer"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
112
113
114
115
          <element maxOccurs="unbounded" minOccurs="0" name="surveyYearVersion" type="double"/>
          <element maxOccurs="unbounded" minOccurs="0" name="surveyDescription" type="string"/>
          <element minOccurs="0" name="population" type="integer"/>
          <element minOccurs="0" name="buildingFootprintArea" type="gml:AreaType"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
116
          <element minOccurs="0" name="surfaceArea" type="gml:AreaType"/>
117
118
          <element minOccurs="0" name="soilType" type="gml:CodeType"/>
          <element minOccurs="0" name="cropType" type="gml:CodeType"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
          <element maxOccurs="unbounded" minOccurs="0" name="foodSurvey" type="FWEL:FoodSurveyPropertyType">
            <annotation>
              <appinfo>
                <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="relationType">composition</taggedValue>
              </appinfo>
            </annotation>
          </element>
          <element maxOccurs="unbounded" minOccurs="0" name="waterSurvey" type="FWEL:WaterSurveyPropertyType">
            <annotation>
              <appinfo>
                <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="relationType">composition</taggedValue>
              </appinfo>
            </annotation>
          </element>
          <element maxOccurs="unbounded" minOccurs="0" name="energySurvey" type="FWEL:EnergySurveyPropertyType">
            <annotation>
              <appinfo>
                <taggedValue xmlns="http://www.interactive-instruments.de/ShapeChange/AppInfo" tag="relationType">composition</taggedValue>
              </appinfo>
            </annotation>
          </element>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
140
141
142
143
144
145
146
147
148
149
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="LandUseSurveyPropertyType">
    <sequence minOccurs="0">
      <element ref="FWEL:LandUseSurvey"/>
    </sequence>
    <attributeGroup ref="gml:AssociationAttributeGroup"/>
  </complexType>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
150
151
152
153
154
155
156
157
158
159
160
161
162
163
  <element name="WaterSurvey" substitutionGroup="FWEL:LandUseSurvey" type="FWEL:WaterSurveyType"/>
  <complexType name="WaterSurveyType">
    <complexContent>
      <extension base="FWEL:LandUseSurveyType">
        <sequence>
          <element minOccurs="0" name="domesticWaterDemand" type="double"/>
          <element minOccurs="0" name="domesticWaterDemandUnit" type="string"/>
          <element minOccurs="0" name="domesticHotWaterDemand" type="double"/>
          <element minOccurs="0" name="domesticHotWaterDemandUnit" type="string"/>
          <element minOccurs="0" name="domesticHotWaterEnergyDemand" type="double"/>
          <element minOccurs="0" name="domesticHotWaterEnergyDemandUnit" type="string"/>
          <element minOccurs="0" name="domesticWaterWaste" type="double"/>
          <element minOccurs="0" name="domesticWaterWasteUnit" type="string"/>
          <element minOccurs="0" name="domesticSolidWaste" type="double"/>
164
          <element minOccurs="0" name="irrigationDemand" type="double"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
165
          <element minOccurs="0" name="domesticSolidWasteUnit" type="string"/>
166
          <element minOccurs="0" name="irrigationDemandUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
167
          <element minOccurs="0" name="totalDomesticWaste" type="double"/>
168
          <element minOccurs="0" name="transpirationLoss" type="double"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
169
          <element minOccurs="0" name="totalDomesticWasteUnit" type="string"/>
170
          <element minOccurs="0" name="transpirationLossUnit" type="string"/>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
171
172
173
174
175
176
177
178
179
180
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="WaterSurveyPropertyType">
    <sequence minOccurs="0">
      <element ref="FWEL:WaterSurvey"/>
    </sequence>
    <attributeGroup ref="gml:AssociationAttributeGroup"/>
  </complexType>
Rushikesh Padsala's avatar
Rushikesh Padsala committed
181
</schema>