QGIS API Documentation
3.14.0-Pi (9f7028fd23)
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
z
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
e
f
g
h
k
l
m
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
a
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
n
o
p
q
r
s
t
u
w
Typedefs
a
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
w
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
server
services
wfs
qgswfsgetfeature.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgswfsgetfeature.h
3
-------------------------
4
begin : December 20 , 2016
5
copyright : (C) 2007 by Marco Hugentobler (original code)
6
(C) 2012 by René-Luc D'Hont (original code)
7
(C) 2014 by Alessandro Pasotti (original code)
8
(C) 2017 by David Marteau
9
email : marco dot hugentobler at karto dot baug dot ethz dot ch
10
a dot pasotti at itopen dot it
11
david dot marteau at 3liz dot com
12
***************************************************************************/
13
14
/***************************************************************************
15
* *
16
* This program is free software; you can redistribute it and/or modify *
17
* it under the terms of the GNU General Public License as published by *
18
* the Free Software Foundation; either version 2 of the License, or *
19
* (at your option) any later version. *
20
* *
21
***************************************************************************/
22
#ifndef QGSWFSGETFEATURE_H
23
#define QGSWFSGETFEATURE_H
24
25
#include "
qgswfsparameters.h
"
26
27
namespace
QgsWfs
28
{
29
struct
getFeatureQuery
30
{
31
QString
typeName
;
32
33
QString
srsName
;
34
35
QgsFeatureRequest
featureRequest
;
36
37
QStringList
serverFids
;
38
39
QStringList
propertyList
;
40
};
41
42
struct
getFeatureRequest
43
{
44
long
maxFeatures
;
45
46
long
startIndex
;
47
48
QgsWfsParameters::Format
outputFormat
;
49
50
QList< getFeatureQuery >
queries
;
51
52
QString
geometryName
;
53
};
54
58
void
parseSortByElement
( QDomElement &sortByElem,
QgsFeatureRequest
&featureRequest,
const
QString &
typeName
);
59
63
getFeatureQuery
parseQueryElement
( QDomElement &queryElem,
const
QgsProject
*project =
nullptr
);
64
68
getFeatureRequest
parseGetFeatureRequestBody
( QDomElement &docElem,
const
QgsProject
*project =
nullptr
);
69
73
getFeatureRequest
parseGetFeatureParameters
(
const
QgsProject
*project =
nullptr
);
74
78
void
writeGetFeature
(
QgsServerInterface
*serverIface,
const
QgsProject
*project,
79
const
QString &version,
const
QgsServerRequest
&request,
80
QgsServerResponse
&response );
81
82
}
// namespace QgsWfs
83
84
#endif
85
QgsWfs::parseGetFeatureParameters
getFeatureRequest parseGetFeatureParameters(const QgsProject *project)
Transform parameters to getFeatureRequest.
Definition:
qgswfsgetfeature.cpp:487
QgsWfs::getFeatureQuery::typeName
QString typeName
Definition:
qgswfsgetfeature.h:67
QgsServerRequest
Definition:
qgsserverrequest.h:38
QgsWfs::QgsWfsParameters::Format
Format
Output format for the response.
Definition:
qgswfsparameters.h:145
QgsWfs::parseGetFeatureRequestBody
getFeatureRequest parseGetFeatureRequestBody(QDomElement &docElem, const QgsProject *project)
Transform RequestBody root element to getFeatureRequest.
Definition:
qgswfsgetfeature.cpp:874
QgsProject
Definition:
qgsproject.h:92
QgsWfs::getFeatureQuery::propertyList
QStringList propertyList
Definition:
qgswfsgetfeature.h:75
QgsFeatureRequest
Definition:
qgsfeaturerequest.h:75
QgsWfs::getFeatureQuery
Definition:
qgswfsgetfeature.h:47
QgsWfs::parseSortByElement
void parseSortByElement(QDomElement &sortByElem, QgsFeatureRequest &featureRequest, const QString &typeName)
Add SortBy element to featureRequest.
Definition:
qgswfsgetfeature.cpp:892
QgsWfs::getFeatureRequest::queries
QList< getFeatureQuery > queries
Definition:
qgswfsgetfeature.h:68
QgsWfs
WMS implementation.
Definition:
qgswfs.cpp:35
QgsWfs::getFeatureQuery::serverFids
QStringList serverFids
Definition:
qgswfsgetfeature.h:73
QgsWfs::parseQueryElement
getFeatureQuery parseQueryElement(QDomElement &queryElem, const QgsProject *project)
Transform Query element to getFeatureQuery.
Definition:
qgswfsgetfeature.cpp:940
QgsWfs::getFeatureRequest::startIndex
long startIndex
Definition:
qgswfsgetfeature.h:64
QgsWfs::getFeatureQuery::srsName
QString srsName
Definition:
qgswfsgetfeature.h:69
QgsWfs::getFeatureRequest
Definition:
qgswfsgetfeature.h:60
typeName
const QString & typeName
Definition:
qgswfsgetfeature.cpp:109
QgsWfs::getFeatureRequest::maxFeatures
long maxFeatures
Definition:
qgswfsgetfeature.h:62
QgsWfs::getFeatureQuery::featureRequest
QgsFeatureRequest featureRequest
Definition:
qgswfsgetfeature.h:71
QgsWfs::getFeatureRequest::outputFormat
QgsWfsParameters::Format outputFormat
Definition:
qgswfsgetfeature.h:66
qgswfsparameters.h
QgsWfs::writeGetFeature
void writeGetFeature(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output WFS GetFeature response.
Definition:
qgswfsgetfeature.cpp:110
QgsServerInterface
Definition:
qgsserverinterface.h:60
QgsServerResponse
Definition:
qgsserverresponse.h:43
QgsWfs::getFeatureRequest::geometryName
QString geometryName
Definition:
qgswfsgetfeature.h:70
Generated on Mon Jun 22 2020 05:14:09 for QGIS API Documentation by
1.8.17