forked from nextgis/qgis_cswclient
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cb1c11
commit 48a7c51
Showing
2 changed files
with
55 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# -*- coding: utf-8 -*- | ||
############################################################################### | ||
# | ||
# MetaSearch Catalogue Client | ||
# | ||
# Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com) | ||
# | ||
# This source is free software; you can redistribute it and/or modify it under | ||
# the terms of the GNU General Public License as published by the Free | ||
# Software Foundation; either version 2 of the License, or (at your option) | ||
# any later version. | ||
# | ||
# This code is distributed in the hope that it will be useful, but WITHOUT ANY | ||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
# details. | ||
# | ||
# A copy of the GNU General Public License is available on the World Wide Web | ||
# at <http://www.gnu.org/copyleft/gpl.html>. You can also obtain it by writing | ||
# to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, | ||
# MA 02111-1307, USA. | ||
# | ||
############################################################################### | ||
|
||
WMSWMST_LINK_TYPES = [ | ||
'OGC:WMS', | ||
'OGC:WMTS', | ||
'OGC:WMS-1.1.1-http-get-map', | ||
'OGC:WMS-1.1.1-http-get-capabilities', | ||
'OGC:WMS-1.3.0-http-get-map', | ||
'OGC:WMS-1.3.0-http-get-capabilities', | ||
'urn:x-esri:specification:ServiceType:wms:url', | ||
'urn:x-esri:specification:ServiceType:Gmd:URL.wms' | ||
] | ||
|
||
WFS_LINK_TYPES = [ | ||
'OGC:WFS', | ||
'OGC:WFS-1.0.0-http-get-capabilities', | ||
'OGC:WFS-1.1.0-http-get-capabilities', | ||
'urn:x-esri:specification:ServiceType:wfs:url', | ||
'urn:x-esri:specification:ServiceType:Gmd:URL.wfs' | ||
] | ||
|
||
WCS_LINK_TYPES = [ | ||
'OGC:WCS', | ||
'OGC:WCS-1.1.0-http-get-capabilities', | ||
'urn:x-esri:specification:ServiceType:wcs:url', | ||
'urn:x-esri:specification:ServiceType:Gmd:URL.wcs' | ||
] |