Subversion Repositories eFlore/Applications.moissonnage

Rev

Rev 34 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
34 alex 1
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
2
<wfs:WFS_Capabilities
3
	xmlns:gml="http://www.opengis.net/gml"
4
	xmlns:wfs="http://www.opengis.net/wfs"
5
	xmlns:ows="http://www.opengis.net/ows"
6
	xmlns:xlink="http://www.w3.org/1999/xlink"
7
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
	xmlns:ogc="http://www.opengis.net/ogc"
9
	xmlns="http://www.opengis.net/wfs"
10
	version="1.1.0"
11
	xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd">
12
 
13
	<ows:ServiceIdentification>
14
		<ows:Title>Observations Tela-Botanica</ows:Title>
15
		<ows:Abstract>Observations Tela-Botanica</ows:Abstract>
16
		<ows:Keywords>
17
			<ows:Keyword>Tela-Botanica</ows:Keyword>
18
			<ows:Keyword>Botanique</ows:Keyword>
19
			<ows:Keyword>Observation naturaliste</ows:Keyword>
20
		</ows:Keywords>
21
		<ows:ServiceType codeSpace="OGC">OGC WFS</ows:ServiceType>
22
		<ows:ServiceTypeVersion>1.1.0</ows:ServiceTypeVersion>
23
		<ows:Fees>none</ows:Fees>
24
		<ows:AccessConstraints>none</ows:AccessConstraints>
25
	</ows:ServiceIdentification>
26
 
27
	<ows:ServiceProvider>
28
		<ows:ProviderName>Association Tela-Botanica</ows:ProviderName>
29
		<ows:ProviderSite xlink:type="simple" xlink:href="http://tela-botanica.org" />
30
		<ows:ServiceContact>
31
			<ows:IndividualName>Tela-Botanica</ows:IndividualName>
32
			<ows:ContactInfo>
33
				<ows:Phone>
34
					<ows:Voice>+33 467524122</ows:Voice>
35
				</ows:Phone>
36
				<ows:Address>
50 mathias 37
					<ows:DeliveryPoint>4, Rue de Belfort</ows:DeliveryPoint>
34 alex 38
					<ows:City>Montpellier</ows:City>
39
					<ows:AdministrativeArea>Hérault (34)</ows:AdministrativeArea>
50 mathias 40
					<ows:PostalCode>34000</ows:PostalCode>
34 alex 41
					<ows:Country>France</ows:Country>
42
					<ows:ElectronicMailAddress>accueil@tela-botanica.org</ows:ElectronicMailAddress>
43
				</ows:Address>
44
				<ows:Role>resourceProvider</ows:Role>
45
			</ows:ContactInfo>
46
		</ows:ServiceContact>
47
	</ows:ServiceProvider>
48
 
49
	<ows:OperationsMetadata>
50
		<ows:Operation name="GetCapabilities">
51
			<ows:DCP>
52
				<ows:HTTP>
53
					<ows:Get xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
54
					<ows:Post xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
55
				</ows:HTTP>
56
			</ows:DCP>
57
			<ows:Parameter name="service">
58
				<ows:Value>WFS</ows:Value>
59
			</ows:Parameter>
60
			<ows:Parameter name="AcceptVersions">
61
				<ows:Value>1.1.0</ows:Value>
62
			</ows:Parameter>
63
			<ows:Parameter name="AcceptFormat">
64
				<ows:Value>text/xml</ows:Value>
65
			</ows:Parameter>
66
		</ows:Operation>
67
		<ows:Operation name="DescribeFeatureType">
68
			<ows:DCP>
69
				<ows:HTTP>
70
					<ows:Get xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
71
					<ows:Post xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
72
				</ows:HTTP>
73
			</ows:DCP>
74
			<ows:Parameter name="outputFormat">
75
				<ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
76
			</ows:Parameter>
77
		</ows:Operation>
78
		<ows:Operation name="GetFeature">
79
			<ows:DCP>
80
				<ows:HTTP>
81
					<ows:Get xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
82
					<ows:Post xlink:type="simple" xlink:href="<?php echo Config::get('url_service_base'); ?>wfs" />
83
				</ows:HTTP>
84
			</ows:DCP>
85
			<ows:Parameter name="resultType">
86
				<ows:Value>results</ows:Value>
87
			</ows:Parameter>
88
			<ows:Parameter name="outputFormat">
89
				<ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
90
			</ows:Parameter>
91
		</ows:Operation>
92
	</ows:OperationsMetadata>
93
 
94
	<FeatureTypeList>
95
		<Operations>
96
			<Operation>Query</Operation>
97
		</Operations>
98
		<FeatureType>
99
			<Name>floradata</Name>
100
			<Title>FloraData</Title>
101
			<Abstract>Base de données constituée d'observations publiques du Carnet en Ligne de Tela Botanica. URL : http://www.tela-botanica.org/appli:cel</Abstract>
102
			<DefaultSRS>EPSG:4326</DefaultSRS>
103
			<OutPutFormats>
104
				<Format>text/xml; subtype=gml/3.1.1</Format>
105
			</OutPutFormats>
106
			<ows:WGS84BoundingBox dimensions="2">
107
				<ows:LowerCorner>-180 -90</ows:LowerCorner>
108
				<ows:UpperCorner>180 90</ows:UpperCorner>
109
			</ows:WGS84BoundingBox>
110
		</FeatureType>
111
		<FeatureType>
112
			<Name>sophy</Name>
113
			<Title>SOPHY, banque de données botaniques et écologiques</Title>
114
			<Abstract>Données issues de SOPHY, une banque de données botaniques et écologiques réalisée par P. DE RUFFRAY, H. BRISSE, G. GRANDJOUAN et E. GARBOLINO dans le cadre de l'Association d'Informatique Appliquée à la Botanique (A.I.A.B.). URL : http://sophy.u-3mrs.fr/</Abstract>
115
			<DefaultSRS>EPSG:4326</DefaultSRS>
116
			<OutPutFormats>
117
				<Format>text/xml; subtype=gml/3.1.1</Format>
118
			</OutPutFormats>
119
			<ows:WGS84BoundingBox dimensions="2">
120
				<ows:LowerCorner>-180 -90</ows:LowerCorner>
121
				<ows:UpperCorner>180 90</ows:UpperCorner>
122
			</ows:WGS84BoundingBox>
123
		</FeatureType>
124
		<FeatureType>
125
			<Name>baznat</Name>
126
			<Title>BazNat - Flore</Title>
127
			<Abstract>Données issues des prospections flore de la base de données naturaliste du réseau BazNat. URL : http://www.baznat.net/</Abstract>
128
			<DefaultSRS>EPSG:4326</DefaultSRS>
129
			<OutPutFormats>
130
				<Format>text/xml; subtype=gml/3.1.1</Format>
131
			</OutPutFormats>
132
			<ows:WGS84BoundingBox dimensions="2">
133
				<ows:LowerCorner>-180 -90</ows:LowerCorner>
134
				<ows:UpperCorner>180 90</ows:UpperCorner>
135
			</ows:WGS84BoundingBox>
136
		</FeatureType>
137
	</FeatureTypeList>
138
 
139
	<ogc:Filter_Capabilities>
140
		<ogc:Spatial_Capabilities>
141
			<ogc:SpatialOperators>
142
				<ogc:SpatialOperator name="BBOX"/>
143
			</ogc:SpatialOperators>
144
		</ogc:Spatial_Capabilities>
145
		<ogc:Scalar_Capabilities>
146
			<ogc:ComparisonOperators>
147
				<ogc:ComparisonOperator>EqualTo</ogc:ComparisonOperator>
148
				<ogc:ComparisonOperator>NotEqualTo</ogc:ComparisonOperator>
149
				<ogc:ComparisonOperator>Like</ogc:ComparisonOperator>
150
			</ogc:ComparisonOperators>
151
		</ogc:Scalar_Capabilities>
152
	</ogc:Filter_Capabilities>
153
</wfs:WFS_Capabilities>