mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# -*- coding: ISO-8859-15 -*-
|
|
# =============================================================================
|
|
# Copyright (c) 2004, 2006 Sean C. Gillies
|
|
# Copyright (c) 2009 STFC <http://www.stfc.ac.uk>
|
|
#
|
|
# Authors :
|
|
# Dominic Lowe <dominic.lowe@stfc.ac.uk>
|
|
#
|
|
# Contact email: dominic.lowe@stfc.ac.uk
|
|
# =============================================================================
|
|
|
|
"""
|
|
Web Feature Server (WFS) methods and metadata. Factory function.
|
|
"""
|
|
|
|
from feature import wfs100, wfs110, wfs200
|
|
def WebFeatureService(url, version='1.0.0', xml=None, parse_remote_metadata=False):
|
|
''' wfs factory function, returns a version specific WebFeatureService object
|
|
|
|
@type url: string
|
|
@param url: url of WFS capabilities document
|
|
@type xml: string
|
|
@param xml: elementtree object
|
|
@type parse_remote_metadata: boolean
|
|
@param parse_remote_metadata: whether to fully process MetadataURL elements
|
|
@return: initialized WebFeatureService_2_0_0 object
|
|
'''
|
|
if version in ['1.0', '1.0.0']:
|
|
return wfs100.WebFeatureService_1_0_0(url, version, xml, parse_remote_metadata)
|
|
elif version in ['1.1', '1.1.0']:
|
|
return wfs110.WebFeatureService_1_1_0(url, version, xml, parse_remote_metadata)
|
|
elif version in ['2.0', '2.0.0']:
|
|
return wfs200.WebFeatureService_2_0_0(url, version, xml, parse_remote_metadata)
|
|
|